Limit ve Süreklilik
Limits describe the behavior of functions as inputs approach a certain value. Continuity ensures functions have no jumps or breaks.
Limit Tanımı (ε-δFormal definition of limits using epsilon and delta Tanımı)
Let f: D → ℝ be a function and c be a limit point of D. We say the limit of f(x) as x approaches c is L, written as:
if for every ε > 0, there exists a δ > 0 such that for all x ∈ D with 0 < |x - c| < δ, we have |f(x) - L| < ε.
Suppose g(x) ≤ f(x) ≤ h(x) for all x in some interval containing c (except possibly at c), and:
Then lim_{x→c} f(x) = L.
Proof: For any ε > 0, choose δ₁, δ₂ > 0 such that:
If 0 < |x-c| < δ₁, then |g(x)-L| < ε ⇒ L-ε < g(x)
If 0 < |x-c| < δ₂, then |h(x)-L| < ε ⇒ h(x) < L+ε
Let δ = min(δ₁, δ₂). Then for 0 < |x-c| < δ:
L-ε < g(x) ≤ f(x) ≤ h(x) < L+ε ⇒ |f(x)-L| < ε
Thus lim_{x→c} f(x) = L. ∎
Süreklilik Tanımı
A function f is continuous at c if:
2. lim_{x→c} f(x) exists
3. lim_{x→c} f(x) = f(c)
Evaluate lim_{x→0} (sin x)/x.
Result: 1
Türev ve Uygulamaları
The derivative measures the instantaneous rate of change of a function. It's fundamental to differential calculus.
Türev Tanımı
The derivative of f at x is:
provided this limit exists. Geometrically, it represents the slope of the tangent line.
Türev Kuralları
Let F(x) = f(x)g(x). Then:
Add and subtract f(x+h)g(x):
assuming f is continuous at x. ∎
Mean Value Theorem
Define g(x) = f(x) - f(a) - [(f(b)-f(a))/(b-a)](x-a).
Note that g(a) = g(b) = 0. By Rolle's Theorem, there exists c ∈ (a, b) such that g'(c) = 0.
g'(x) = f'(x) - [f(b)-f(a)]/(b-a)
So g'(c) = 0 ⇒ f'(c) = [f(b)-f(a)]/(b-a). ∎
Find the maximum area of a rectangle inscribed in a semicircle of radius r.
İntegral ve Uygulamaları
Integration is the reverse process of differentiation, used to calculate areas, volumes, and accumulated quantities.
RiemannBernhard Riemann, German mathematician who formalized integration Integral Tanımı
Let f be bounded on [a, b]. A partition P divides [a, b] into subintervals. The Riemann sum is:
where t_i ∈ [x_{i-1}, x_i]. f is Riemann integrable if these sums converge to a limit as the partition norm approaches 0.
Part 1: If f is continuous on [a, b], then F(x) = ∫_a^x f(t)dt is differentiable on (a, b) and F'(x) = f(x).
Part 2: If F is any antiderivative of f on [a, b], then:
For h > 0:
By the Mean Value Theorem for Integrals, there exists c_h ∈ [x, x+h] such that:
Thus [F(x+h)-F(x)]/h = f(c_h). As h → 0, c_h → x, and by continuity of f, f(c_h) → f(x). So F'(x) = f(x). ∎
İntegral Teknikleri
where u = g(x)
Derived from product rule
Using identities like sin²x + cos²x = 1
Decomposing rational functions
Evaluate ∫ x·e^x dx using integration by parts.
Diziler ve Seriler
Sequences are ordered lists of numbers, series are sums of sequences. Convergence tests determine if series approach finite limits.
Sequence Convergence
A sequence {a_n} converges to L if for every ε > 0, there exists N ∈ ℕ such that for all n ≥ N, |a_n - L| < ε.
Series Convergence Tests
If lim a_n ≠ 0, then Σ a_n diverges.
If f is positive, continuous, decreasing on [1, ∞), then Σ f(n) and ∫_1^∞ f(x)dx both converge or diverge.
L < 1: converges; L > 1: diverges; L = 1: inconclusive
Same convergence conditions as ratio test
For a decreasing function f on [1, ∞):
Summing from k = 1 to n-1:
Thus the sequence of partial sums and the integral either both converge or both diverge. ∎
Power Series
A power series centered at c is:
It converges within an interval of radius R (radius of convergence).
where the remainder R_n(x) = [f^{(n+1)}(c)/(n+1)!] (x-a)^{n+1} for some c between a and x.
Test convergence of Σ_{n=1}^∞ 1/n².
Çok Değişkenli Fonksiyonlar
Functions of several variables extend calculus concepts to higher dimensions, with partial derivatives and multiple integrals.
Partial Derivatives
The partial derivative of f(x, y) with respect to x is:
keeping y constant. Similarly for ∂f/∂y.
The order of differentiation doesn't matter.
Gradient and Directional Derivative
The gradient of f: ℝⁿ → ℝ is:
The directional derivative in direction u (unit vector) is:
If z = f(x, y) where x = g(t) and y = h(t) are differentiable, then:
Proof: Using linear approximation:
Δz ≈ (∂f/∂x)Δx + (∂f/∂y)Δy
Divide by Δt and take limit as Δt → 0:
dz/dt = lim_{Δt→0} Δz/Δt = (∂f/∂x)(dx/dt) + (∂f/∂y)(dy/dt). ∎
Multiple Integrals
The double integral of f(x, y) over region R is:
Evaluated as iterated integrals: ∫ [∫ f(x, y) dy] dx.
Find all second partial derivatives of f(x, y) = x³y + e^{xy}.
Diferansiyel Denklemler
Differential equations describe relationships involving rates of change. They model phenomena in physics, engineering, and biology.
Temel Tanımlar
An ordinary differential equation (ODEOrdinary Differential Equation involves one independent variable) relates a function and its derivatives:
The order is the highest derivative present. A solution is a function that satisfies the equation.
First Order ODEOrdinary Differential Equation involves one independent variables
Solution: ∫ dy/g(y) = ∫ f(x)dx
Solved using integrating factor μ(x) = e^{∫P(x)dx}
where ∂M/∂y = ∂N/∂x
For y' + P(x)y = Q(x), multiply by integrating factor μ(x) = e^{∫P(x)dx}:
Note that (μ(x)y)' = μ(x)y' + μ'(x)y = μ(x)y' + μ(x)P(x)y since μ' = μP.
Thus: (μy)' = μQ
Integrate: μ(x)y = ∫ μ(x)Q(x)dx + C
So: y = [1/μ(x)] [∫ μ(x)Q(x)dx + C]. ∎
Second Order Linear ODEOrdinary Differential Equation involves one independent variables
For ay'' + by' + cy = 0 (homogeneous), the characteristic equation is:
Roots r₁, r₂ determine solution form:
- Real distinct: y = C₁e^{r₁x} + C₂e^{r₂x}
- Real equal: y = (C₁ + C₂x)e^{rx}
- Complex: y = e^{αx}(C₁cosβx + C₂sinβx)
Laplace Transforms
The Laplace transform converts differential equations to algebraic equations:
Useful for solving ODEOrdinary Differential Equation involves one independent variables with initial conditions.
Solve y' + 2y = e^{-x}, y(0) = 1.